home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
connec1r
/
form3.frm
< prev
next >
Wrap
Text File
|
1999-07-14
|
2KB
|
58 lines
VERSION 5.00
Begin VB.Form Form3
BackColor = &H000080FF&
Caption = "Stuff"
ClientHeight = 735
ClientLeft = 4140
ClientTop = 4620
ClientWidth = 4335
ForeColor = &H000080FF&
LinkTopic = "Form3"
ScaleHeight = 735
ScaleWidth = 4335
Begin VB.CommandButton Command2
Caption = "Unlock"
Height = 375
Left = 3120
TabIndex = 2
Top = 120
Width = 1095
End
Begin VB.CommandButton Command1
Caption = "Lock"
Height = 375
Left = 1800
TabIndex = 1
Top = 120
Width = 1215
End
Begin VB.TextBox Text1
Height = 375
Left = 120
TabIndex = 0
Text = "Hahahahahaha"
Top = 120
Width = 1455
End
Begin VB.Line Line1
X1 = 0
X2 = 5040
Y1 = 600
Y2 = 600
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Text1.Locked = True
Text1.SetFocus
End Sub
Private Sub Command2_Click()
Text1.Locked = False
Text1.SetFocus
End Sub